home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 21 / CU Amiga Magazine's Super CD-ROM 21 (1998)(EMAP Images)(GB)[!][issue 1998-04].iso / CUCD / Programming / Python-1.4 / Source / Include / frameobject.h < prev    next >
C/C++ Source or Header  |  1996-11-24  |  4KB  |  119 lines

  1. #ifndef Py_FRAMEOBJECT_H
  2. #define Py_FRAMEOBJECT_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6.  
  7. /***********************************************************
  8. Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
  9. The Netherlands.
  10.  
  11.                         All Rights Reserved
  12.  
  13. Permission to use, copy, modify, and distribute this software and its
  14. documentation for any purpose and without fee is hereby granted,
  15. provided that the above copyright notice appear in all copies and that
  16. both that copyright notice and this permission notice appear in
  17. supporting documentation, and that the names of Stichting Mathematisch
  18. Centrum or CWI or Corporation for National Research Initiatives or
  19. CNRI not be used in advertising or publicity pertaining to
  20. distribution of the software without specific, written prior
  21. permission.
  22.  
  23. While CWI is the initial source for this software, a modified version
  24. is made available by the Corporation for National Research Initiatives
  25. (CNRI) at the Internet address ftp://ftp.python.org.
  26.  
  27. STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
  28. REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
  29. MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
  30. CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
  31. DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  32. PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  33. TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  34. PERFORMANCE OF THIS SOFTWARE.
  35.  
  36. ******************************************************************/
  37.  
  38. /* Frame object interface */
  39.  
  40. typedef struct {
  41.     int b_type;        /* what kind of block this is */
  42.     int b_handler;        /* where to jump to find handler */
  43.     int b_level;        /* value stack level to pop to */
  44. } PyTryBlock;
  45.  
  46. typedef struct _frame {
  47.     PyObject_HEAD
  48.     struct _frame *f_back;    /* previous frame, or NULL */
  49.     PyCodeObject *f_code;    /* code segment */
  50.     PyObject *f_builtins;    /* builtin symbol table (PyDictObject) */
  51.     PyObject *f_globals;    /* global symbol table (PyDictObject) */
  52.     PyObject *f_locals;    /* local symbol table (PyDictObject) */
  53.     PyObject *f_owner;    /* owner (e.g. class or module) or NULL */
  54.     PyObject *f_fastlocals;    /* fast local variables (PyListObject) */
  55.     PyObject **f_valuestack;    /* malloc'ed array */
  56.     PyTryBlock *f_blockstack;    /* malloc'ed array */
  57.     int f_nvalues;        /* size of f_valuestack */
  58.     int f_nblocks;        /* size of f_blockstack */
  59.     int f_iblock;        /* index in f_blockstack */
  60.     int f_lasti;        /* Last instruction if called */
  61.     int f_lineno;        /* Current line number */
  62.     int f_restricted;    /* Flag set if restricted operations
  63.                    in this scope */
  64.     PyObject *f_trace;    /* Trace function */
  65. } PyFrameObject;
  66.  
  67.  
  68. /* Standard object interface */
  69.  
  70. extern DL_IMPORT(PyTypeObject) PyFrame_Type;
  71.  
  72. #define PyFrame_Check(op) ((op)->ob_type == &PyFrame_Type)
  73.  
  74. PyFrameObject * PyFrame_New
  75.     Py_PROTO((PyFrameObject *, PyCodeObject *,
  76.           PyObject *, PyObject *, PyObject *, int, int));
  77.  
  78.  
  79. /* The rest of the interface is specific for frame objects */
  80.  
  81. /* Tuple access macros */
  82.  
  83. #ifndef DEBUG
  84. #define GETITEM(v, i) PyTuple_GET_ITEM((PyTupleObject *)(v), (i))
  85. #define GETITEMNAME(v, i) \
  86.     PyString_AS_STRING((PyStringObject *)GETITEM((v), (i)))
  87. #else
  88. #define GETITEM(v, i) PyTuple_GetItem((v), (i))
  89. #define GETITEMNAME(v, i) PyString_AsString(GETITEM(v, i))
  90. #endif
  91.  
  92. #define GETUSTRINGVALUE(s) ((unsigned char *)PyString_AS_STRING(s))
  93.  
  94. /* Code access macros */
  95.  
  96. #define Getconst(f, i)    (GETITEM((f)->f_code->co_consts, (i)))
  97. #define Getname(f, i)    (GETITEMNAME((f)->f_code->co_names, (i)))
  98. #define Getnamev(f, i)    (GETITEM((f)->f_code->co_names, (i)))
  99.  
  100.  
  101. /* Block management functions */
  102.  
  103. void PyFrame_BlockSetup Py_PROTO((PyFrameObject *, int, int, int));
  104. PyTryBlock *PyFrame_BlockPop Py_PROTO((PyFrameObject *));
  105.  
  106. /* Extend the value stack */
  107.  
  108. PyObject **PyFrame_ExtendStack Py_PROTO((PyFrameObject *, int, int));
  109.  
  110. /* Conversions between "fast locals" and locals in dictionary */
  111.  
  112. void PyFrame_LocalsToFast Py_PROTO((PyFrameObject *, int));
  113. void PyFrame_FastToLocals Py_PROTO((PyFrameObject *));
  114.  
  115. #ifdef __cplusplus
  116. }
  117. #endif
  118. #endif /* !Py_FRAMEOBJECT_H */
  119.